home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000472_news@columbia.edu _Mon Mar 24 14:21:30 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA16044
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 24 Mar 1997 14:21:29 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA02696
  7.     for kermit.misc@watsun; Mon, 24 Mar 1997 14:21:28 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Start telnet connection using K95
  12. Date: 24 Mar 1997 19:21:23 GMT
  13. Organization: Columbia University
  14. Lines: 21
  15. Message-ID: <5h6k7j$pmd$1@apakabar.cc.columbia.edu>
  16. References: <333670DC.F39@cdiv.azl.nl>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6804
  19.  
  20. In article <333670DC.F39@cdiv.azl.nl>, Mark Barto  <MBarto@cdiv.azl.nl> wrote:
  21. : I'm starting a telnet session, using the command line, like: 
  22. : k95.exe -J hostname. Depending on the hostname I want to set some extra
  23. : funtions in the script. (session colors etc.)
  24. : I tried to read the \v(line) from K95custom.ini but this returns the
  25. : value 0. Once the telnet session is started this variable shows the
  26. : right session name that I can use in my scripts. This is to late for my
  27. : telnet session because the script is alreade finished at this time.
  28. : How can I work arround this problem??
  29. It's a question of knowing the order in which Kermit 95 executes commands
  30. from the various sources: command line, init file, "application file", etc.
  31. The initialization file (including K95CUSTOM.INI) is executed before the
  32. command line options, as you discovered.  So:
  33.  
  34.   kermit -J hostname -C "take commandfile"
  35.  
  36. where hostname is the host you want to connect to, and commandfile is the
  37. name of a Kermit command file.
  38.  
  39. - Frank